Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency @sentry/browser to v8.7.0 - autoclosed #563

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 29, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/browser (source) 8.5.0 -> 8.7.0 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/browser)

v8.7.0

Important Changes
  • feat(react): Add TanStack Router integration (#​12095)

    This release adds instrumentation for TanStack router with a new tanstackRouterBrowserTracingIntegration in the
    @sentry/react SDK:

    import * as Sentry from '@​sentry/react';
    import { createRouter } from '@​tanstack/react-router';
    
    const router = createRouter({
      // Your router options...
    });
    
    Sentry.init({
      dsn: '___PUBLIC_DSN___',
      integrations: [Sentry.tanstackRouterBrowserTracingIntegration(router)],
      tracesSampleRate: 1.0,
    });
Other Changes
  • fix(nextjs): Do not hide sourceMappingURL comment on client when nextConfig.productionBrowserSourceMaps: true is
    set (#​12278)

v8.6.0

Important Changes
  • feat(metrics): Add timings method to metrics (#​12226)

    This introduces a new method, metrics.timing(), which can be used in two ways:

    1. With a numeric value, to simplify creating a distribution metric. This will default to second as unit:
    Sentry.metrics.timing('myMetric', 100);
    1. With a callback, which will wrap the duration of the callback. This can accept a sync or async callback. It will
      create an inactive span around the callback and at the end emit a metric with the duration of the span in seconds:
    const returnValue = Sentry.metrics.timing('myMetric', measureThisFunction);
  • feat(react): Add Sentry.reactErrorHandler (#​12147)

    This PR introduces Sentry.reactErrorHandler, which you can use in React 19 as follows:

    import * as Sentry from '@​sentry/react';
    import { hydrateRoot } from 'react-dom/client';
    
    ReactDOM.hydrateRoot(
      document.getElementById('root'),
      <React.StrictMode>
        <App />
      </React.StrictMode>,
      {
        onUncaughtError: Sentry.reactErrorHandler(),
        onCaughtError: Sentry.reactErrorHandler((error, errorInfo) => {
          // optional callback if users want custom config.
        }),
      },
    );

    For more details, take a look at the PR. Our
    documentation will be updated soon!

Other Changes
  • feat(sveltekit): Add request data to server-side events (#​12254)
  • fix(core): Pass in cron monitor config correctly (#​12248)
  • fix(nextjs): Don't capture suspense errors in server components (#​12261)
  • fix(tracing): Ensure sent spans are limited to 1000 (#​12252)
  • ref(core): Use versioned carrier on global object (#​12206)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added dependencies help wanted Extra attention is needed labels May 29, 2024
@renovate renovate bot temporarily deployed to production May 29, 2024 15:59 Inactive
@renovate renovate bot temporarily deployed to production May 29, 2024 15:59 Inactive
@renovate renovate bot changed the title fix(deps): update dependency @sentry/browser to v8.6.0 fix(deps): update dependency @sentry/browser to v8.7.0 May 29, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 33de830 to bf2ee3f Compare May 29, 2024 19:58
@renovate renovate bot temporarily deployed to production May 29, 2024 19:58 Inactive
@renovate renovate bot temporarily deployed to production May 29, 2024 19:58 Inactive
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from bf2ee3f to 6cb1b38 Compare May 29, 2024 21:11
@renovate renovate bot temporarily deployed to production May 29, 2024 21:11 Inactive
@renovate renovate bot temporarily deployed to production May 29, 2024 21:11 Inactive
@renovate renovate bot changed the title fix(deps): update dependency @sentry/browser to v8.7.0 fix(deps): update dependency @sentry/browser to v8.7.0 - autoclosed May 29, 2024
@renovate renovate bot closed this May 29, 2024
@renovate renovate bot deleted the renovate/sentry-javascript-monorepo branch May 29, 2024 21:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants